Sven Vervloet
01/06/2025, 11:15 AMKevin Jump
01/06/2025, 11:22 AMSven Vervloet
01/06/2025, 11:41 AMKevin Jump
01/06/2025, 12:11 PMSven Vervloet
01/06/2025, 12:18 PMKevin Jump
01/06/2025, 12:29 PMSven Vervloet
01/06/2025, 2:00 PMKevin Jump
01/06/2025, 2:21 PMSven Vervloet
01/06/2025, 4:10 PMKevin Jump
01/07/2025, 10:52 AMSven Vervloet
01/07/2025, 3:59 PMSven Vervloet
01/07/2025, 4:00 PMSven Vervloet
01/14/2025, 3:37 PMKevin Jump
01/14/2025, 4:12 PMcs
private SyncPublishResponse DoPublisherStep(PublisherActionRequest options, Func<SyncPublishRequest, SyncPublishResponse> action)
{
EnsureEnabled();
try
{
var hub = new HubClientService(options.ClientId);
var callbacks = hub?.Callbacks();
var request = options.ToPublishRequest(callbacks);
var response = action(request);
if (response != null)
return response;
throw new EntryPointNotFoundException(nameof(action));
}
catch (Exception ex)
{
logger.Error<uSyncReceiveApiController>(ex, $"Fail on Publisher Step: {options.ActionAlias} {options.StepIndex} {options.PageNumber}");
throw;
}
}
https://cdn.discordapp.com/attachments/1325784770973798443/1328758694619385950/image.png?ex=6787de77&is=67868cf7&hm=54cec48ed0d977c1c510766ffce15a26bc824de422904b9e912cdd4f2125429a&Sven Vervloet
01/14/2025, 4:22 PM